From 598ef3c9a817fc5459e052728ef1937372178f07 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Sat, 29 Oct 2005 03:03:10 +0000 Subject: [PATCH] * NS_USER => $row->namespace (it's going to be the same anyway) --- includes/SpecialListusers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialListusers.php b/includes/SpecialListusers.php index fc664e05a4..62bfb884cf 100644 --- a/includes/SpecialListusers.php +++ b/includes/SpecialListusers.php @@ -61,7 +61,7 @@ class ListUsersPage extends QueryPage { $batch = new LinkBatch; while ( $row = $db->fetchObject( $res ) ) { - $batch->addObj( Title::makeTitleSafe( NS_USER, $row->title ) ); + $batch->addObj( Title::makeTitleSafe( $row->namespace, $row->title ) ); } $batch->execute( $wgLinkCache ); -- 2.20.1